Table: baleen_namespace
A namespace is a proxy with a configured origin and specific rules.
Examples
List namespaces
select id, name, urlfrom baleen_namespace;
Get namespaces with the WAF enabled
select id, namefrom baleen_namespacewhere waf_enabled;
Get namespaces with the header X-Frame-Options: deny no send
select id, namefrom baleen_namespacewhere not headers_deny_frame_options;
Schema for baleen_namespace
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
cdn_enabled | boolean | Cache enabled. | |
custom_404_page | boolean | Use custom 404 page. | |
custom_50x_page | boolean | Use custom 50x page. | |
headers_deny_frame_options | boolean | Add X-Frame-Options: deny http header. | |
headers_no_sniff_mime_type | boolean | Add X-Content-Type-Options: nosniff http header. | |
id | text | Unique ID of the namespace. | |
name | text | Name of the namespace. | |
url | text | URL of the origin. | |
waf_enabled | boolean | Waf enabled. |