steampipe plugin install francois2metz/gandi

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,
protocol
from
gandi_web_redirection
where
domain = 'example.net';

Schema for gandi_web_redirection

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
created_attimestamp with time zoneCreation date.
domaintext=Domain name.
hosttext=Source hostname (including the domain name).
protocoltextOne of: 'http', 'https', 'httpsonly'.
typetextType of redirection. One of: 'cloak', 'http301', 'http302'
updated_attimestamp with time zoneLast update date.
urltextTarget URL.