steampipe plugin install twilio

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_sid
from
twilio_serverless_service_function;
select
sid,
friendly_name,
date_created,
service_sid,
account_sid
from
twilio_serverless_service_function;

Schema for twilio_serverless_service_function

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_sidtextThe SID of the Account that created the function resource.
date_createdtimestamp with time zoneThe date and time that the function resource was created.
date_updatedtimestamp with time zoneThe date and time that the function resource was last updated.
friendly_nametextThe string that you assigned to describe the function resource.
linksjsonbA list of URLs of nested resources of the function resource.
service_sidtext=The SID of the Service that the Function resource is associated with.
sidtext=The unique string that identifies the function resource.
titletextTitle of the resource.
urltextThe 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