solace_applicationsolace_application_domainsolace_application_versionsolace_configurationsolace_configuration_typesolace_consumersolace_custom_attribute_definitionsolace_datacentersolace_enumsolace_enum_versionsolace_environmentsolace_eventsolace_event_broker_servicesolace_event_broker_service_detailsolace_event_broker_service_versionsolace_event_management_agentsolace_event_meshsolace_event_versionsolace_eventapisolace_eventapi_productsolace_eventapi_product_versionsolace_eventapi_versionsolace_lifecycle_statesolace_messaging_servicesolace_schemasolace_schema_versionsolace_service_classsolace_topic_domain
Table: solace_application_domain
An application domain represents a namespace where applications, events, and other EDA objects reside. Application domains organize your applications, events, and other associated objects for different teams, groups, or lines of business within your organization.
Key columns
- Provide a numeric
id
if you want to query for a specific domain. This can be either set directly in awhere
clause, or specified as part ofjoin
with another table.
Caveat
- Be careful when requesting all columns (
*
) without using anid
in the query. To load this data, Steampipe will have to issue multiple API request to retrieve all resources (essentially issuing a paginated queries).
Examples
List of all application domains
select d.name as domain, a.name as applicationfrom solace_application_domain d join solace_application a on a.application_domain_id = d.id;-- or a simplified versionselect id, namefrom solace_application_domain;
Details of an application domain
select id, name, application_type, broker_type, custom_attributes, created_time, created_byfrom solace_application_domainwhere id = 'e32trlalpa4';
List application domains that have been created in the last 30 days
select id, name, description, stats, created_by, created_timefrom solace_application_domainwhere created_time >= now() - interval '30' day;
List application domains that have not been updated in the last 30 days
select id, name, description, stats, changed_by, updated_timefrom solace_application_domainwhere updated_time <= now() - interval '10' day;