Table: gandi_web_redirection
The gandi_web_redirection
table can be used to query information about your web redirections and you must specify which domain in the where or join clause using the domain
column.
Examples
List web redirections of a domain
select host, url, protocolfrom gandi_web_redirectionwhere domain = 'example.net';
Schema for gandi_web_redirection
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
created_at | timestamp with time zone | Creation date. | |
domain | text | = | Domain name. |
host | text | = | Source hostname (including the domain name). |
protocol | text | One of: 'http', 'https', 'httpsonly'. | |
type | text | Type of redirection. One of: 'cloak', 'http301', 'http302' | |
updated_at | timestamp with time zone | Last update date. | |
url | text | Target URL. |