api:v3:subscriptions:list-identity-providers
Return a list of Identity Providers for a subscription. [development]
For more help, see https://cloudapi-docs.acquia.com/ or https://dev.acquia.com/api-documentation/acquia-cloud-site-factory-api for acsf commands.
Usage
acli api:v3:subscriptions:list-identity-providers [--offset OFFSET] [--limit LIMIT] [--sort SORT] [--filter FILTER] [--] <subscriptionId>
acli api:v3:subscriptions:list-identity-providers --sort="name,-created_at" --filter="status=active;type=standard"
Arguments
subscriptionId
Required
Unique identifier for the subscription.
Options
--offset
Required
The number of items to skip before starting to collect the result set.
--limit
Required
The maximum number of items to return per page.
--sort
Required
Sort the result set by one or more fields. **Format:** `field1,field2,-field3` **Sort order:** - No prefix - Ascending order (default) - `-` prefix - Descending order **Multiple fields:** - Fields are processed in the order specified - First field has highest priority - Use comma to separate multiple fields **Examples:** - `name` - Sort by name in ascending order - `-created_at` - Sort by created_at in descending order - `name,-created_at` - Sort by name ascending, then created_at descending - `status,name,-updated_at` - Sort by status ascending, then name ascending, then updated_at descending
--filter