steampipe plugin install solacelabs/solace

Table: solace_lifecycle_state

Information about Lifecycle States on the Solace PubSub+ Cloud.

Key columns

  • Provide a numeric id if you want to query for a specific Lifecycle State. This can be either set directly in a where clause, or specified as part of join with another table.

Caveat

  • Be careful when requesting all columns (*) without using an id 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 Lifecycle States

select
id,
name
from
solace_lifecycle_state;

Details of a Lifecycle State

select
id,
name,
description,
state_order,
type
from
solace_lifecycle_state
where
id = 'n5o4xx2fh62';