SHOW APPLICATION SERVICES

Lists the Application Services for which you have access privileges.

See also:

CREATE APPLICATION SERVICE , ALTER APPLICATION SERVICE , DESCRIBE APPLICATION SERVICE , DROP APPLICATION SERVICE

Syntax

SHOW APPLICATION SERVICES
  [ LIKE '<pattern>' ]
  [ IN { ACCOUNT | DATABASE [ <database_name> ] | SCHEMA [ <schema_name> ] } ]
  [ LIMIT <rows> ]

Parameters

LIKE 'pattern'
Filters the output by name.

IN { ACCOUNT | DATABASE [ database_name ] | SCHEMA [ schema_name ] }

Scopes the listing to an account, database, or schema.
LIMIT rows
Limits the maximum number of rows returned.

Access control requirements

You can see a service in the output if you have at least one privilege on it, or if you own it.

Output

The command returns one row per service with the following columns:

ColumnDescription
created_onDate and time when the service was created.
nameName of the service.
status

Current lifecycle state of the underlying managed service. One of PENDING, RUNNING, FAILED, DONE, SUSPENDING, SUSPENDED, CANCELLED, DELETING, DELETED, or INTERNAL_ERROR.

database_nameDatabase that contains the service.
schema_nameSchema that contains the service.
query_warehouse

Warehouse used by the service when a container connects to Snowflake without specifying a warehouse.

compute_poolCompute pool that runs the service.
urlPublic endpoint URL for the service, if any.
privatelink_urlPrivateLink endpoint URL for the service, if any.
ownerRole that owns the service.
owner_role_typeType of the owning role, such as ROLE.
source

JSON object describing the deployed package, with keys artifactRepository, package, version, and alias.

resumed_onDate and time when the service was most recently resumed.
suspended_onDate and time when the service was most recently suspended.
is_upgradingTRUE when an upgrade is in progress.
auto_resumeWhether auto-resume is enabled.
auto_suspend_secs

Configured auto-suspend timeout in seconds. 0 means auto-suspend is disabled.

external_access_integrationsExternal access integrations attached to the service.
commentService comment, if any.
additional_properties

JSON object of additional presentation metadata from your optional app.yml manifest (for example, label and description from the profile section of Optional app.yml manifest for Snowflake App Runtime).

Examples

SHOW APPLICATION SERVICES IN SCHEMA my_db.my_schema;