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_sidfrom twilio_serverless_service;
select sid, friendly_name, date_created, include_credentials, account_sidfrom 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_sidfrom twilio_serverless_servicewhere not ui_editable;
select sid, friendly_name, date_created, include_credentials, account_sidfrom twilio_serverless_servicewhere ui_editable = 0;
Schema for twilio_serverless_service
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 resource. | |
date_created | timestamp with time zone | The date and time that the resource was created. | |
date_updated | timestamp with time zone | The date and time that the resource was last updated. | |
domain_base | text | The base domain name for this Service, which is a combination of the unique name and a randomly generated string. | |
friendly_name | text | The string that you assigned to describe the resource. | |
include_credentials | boolean | Indicates whether to inject Account credentials into a function invocation context, or not. | |
links | jsonb | A list of URLs of the Service's nested resources. | |
sid | text | = | The unique string that identifies the resource. |
title | text | Title of the resource. | |
ui_editable | boolean | Indicates whether the Service resource's properties and subresources can be edited via the UI, or not. | |
unique_name | text | An user-defined string that uniquely identifies the Service resource. | |
url | text | The 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