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_service_class
Information about Service Classes on the Solace PubSub+ Cloud.
Key columns
- Provide a numeric
id
if you want to query for a specific Service Class. 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 Service Classes
select id, name, typefrom solace_service_class;
Details of a Service Class
select id, name, type, vpn_connections, broker_scaling_tier, vpn_max_spool_sizefrom solace_service_classwhere id = 'n5o4xx2fh62';
List service classes which have more than 5 VPN connections
select id, name, type, vpn_connections, broker_scaling_tier, vpn_max_spool_sizefrom solace_service_classwhere vpn_connections > 5;