vw_workspace_backends
Creates, updates, deletes, gets or lists a vw_workspace_backends
resource.
Overview
Name | vw_workspace_backends |
Type | View |
Id | azure.api_management.vw_workspace_backends |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.url') as "url",
JSON_EXTRACT(properties, '$.protocol') as "protocol",
JSON_EXTRACT(properties, '$.title') as "title",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.resourceId') as "resource_id",
JSON_EXTRACT(properties, '$.properties') as "properties",
JSON_EXTRACT(properties, '$.credentials') as "credentials",
JSON_EXTRACT(properties, '$.proxy') as "proxy",
JSON_EXTRACT(properties, '$.tls') as "tls",
JSON_EXTRACT(properties, '$.circuitBreaker') as "circuit_breaker",
JSON_EXTRACT(properties, '$.pool') as "pool",
JSON_EXTRACT(properties, '$.type') as "type",
subscriptionId,
resourceGroupName,
serviceName,
workspaceId,
backendId
FROM azure.api_management.workspace_backends
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND workspaceId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.url') as "url",
json_extract_path_text(properties, '$.protocol') as "protocol",
json_extract_path_text(properties, '$.title') as "title",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.resourceId') as "resource_id",
json_extract_path_text(properties, '$.properties') as "properties",
json_extract_path_text(properties, '$.credentials') as "credentials",
json_extract_path_text(properties, '$.proxy') as "proxy",
json_extract_path_text(properties, '$.tls') as "tls",
json_extract_path_text(properties, '$.circuitBreaker') as "circuit_breaker",
json_extract_path_text(properties, '$.pool') as "pool",
json_extract_path_text(properties, '$.type') as "type",
subscriptionId,
resourceGroupName,
serviceName,
workspaceId,
backendId
FROM azure.api_management.workspace_backends
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND workspaceId = 'replace-me';