Table: twilio_serverless_service_function - Query Twilio Serverless Service Functions using SQL
Twilio Serverless is a service that allows developers to build and run Twilio applications without having to manage servers. Serverless Service Functions are individual units of code that are part of these applications. They are event-driven, meaning they run in response to triggers such as HTTP requests or incoming phone calls.
Table Usage Guide
The twilio_serverless_service_function
table provides insights into Serverless Service Functions within Twilio. As a developer or operations engineer, explore function-specific details through this table, including configurations, runtime, and status. Utilize it to uncover information about functions, such as their configurations, the runtime used, and their current status.
Examples
Basic info
Discover the segments that have been recently created within your Twilio Serverless service functions. This enables you to analyze the settings to understand which functions are associated with a specific service and account.
select sid, friendly_name, date_created, service_sid, account_sidfrom twilio_serverless_service_function;
select sid, friendly_name, date_created, service_sid, account_sidfrom twilio_serverless_service_function;
Schema for twilio_serverless_service_function
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
account_sid | text | The SID of the Account that created the function resource. | |
date_created | timestamp with time zone | The date and time that the function resource was created. | |
date_updated | timestamp with time zone | The date and time that the function resource was last updated. | |
friendly_name | text | The string that you assigned to describe the function resource. | |
links | jsonb | A list of URLs of nested resources of the function resource. | |
service_sid | text | = | The SID of the Service that the Function resource is associated with. |
sid | text | = | The unique string that identifies the function resource. |
title | text | Title of the resource. | |
url | text | The absolute URL of the function resource. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- twilio
You can pass the configuration to the command with the --config
argument:
steampipe_export_twilio --config '<your_config>' twilio_serverless_service_function