steampipe plugin install twilio

Table: twilio_serverless_service - Query Twilio Serverless Services using SQL

Twilio Serverless is a development and runtime environment that enables developers to build and run Twilio applications without having to set up and manage servers. It provides an integrated environment for building, testing, and deploying Twilio applications, making it easier and faster to create and maintain Twilio applications. Twilio Serverless supports multiple programming languages and provides a range of tools and features to help developers build and run applications.

Table Usage Guide

The twilio_serverless_service table provides insights into Twilio Serverless Services. As a developer or system administrator, you can explore service-specific details through this table, including service SID, unique name, date created, date updated, and more. This table can be utilized to manage and monitor the services, understand the usage patterns, and troubleshoot any issues.

Examples

Basic info

Discover the segments that have been created on the Twilio Serverless Service platform, including their names and creation dates. This query is useful for gaining insights into the services' setup and their associated account IDs without needing to dive into credential details.

select
sid,
friendly_name,
date_created,
include_credentials,
account_sid
from
twilio_serverless_service;
select
sid,
friendly_name,
date_created,
include_credentials,
account_sid
from
twilio_serverless_service;

List services not editable via UI

Determine the services that cannot be modified through the user interface. This can be useful in identifying services that may require manual intervention or additional permissions for modifications.

select
sid,
friendly_name,
date_created,
include_credentials,
account_sid
from
twilio_serverless_service
where
not ui_editable;
select
sid,
friendly_name,
date_created,
include_credentials,
account_sid
from
twilio_serverless_service
where
ui_editable = 0;

Schema for twilio_serverless_service

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_sidtextThe SID of the Account that created the resource.
date_createdtimestamp with time zoneThe date and time that the resource was created.
date_updatedtimestamp with time zoneThe date and time that the resource was last updated.
domain_basetextThe base domain name for this Service, which is a combination of the unique name and a randomly generated string.
friendly_nametextThe string that you assigned to describe the resource.
include_credentialsbooleanIndicates whether to inject Account credentials into a function invocation context, or not.
linksjsonbA list of URLs of the Service's nested resources.
sidtext=The unique string that identifies the resource.
titletextTitle of the resource.
ui_editablebooleanIndicates whether the Service resource's properties and subresources can be edited via the UI, or not.
unique_nametextAn user-defined string that uniquely identifies the Service resource.
urltextThe absolute URL of the Service 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