vw_linkers
Creates, updates, deletes, gets or lists a vw_linkers
resource.
Overview
Name | vw_linkers |
Type | View |
Id | azure.service_connector.vw_linkers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
systemData as system_data,
JSON_EXTRACT(properties, '$.targetService') as "target_service",
JSON_EXTRACT(properties, '$.authInfo') as "auth_info",
JSON_EXTRACT(properties, '$.clientType') as "client_type",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.vNetSolution') as "vnet_solution",
JSON_EXTRACT(properties, '$.secretStore') as "secret_store",
JSON_EXTRACT(properties, '$.scope') as "scope",
JSON_EXTRACT(properties, '$.publicNetworkSolution') as "public_network_solution",
JSON_EXTRACT(properties, '$.configurationInfo') as "configuration_info",
resourceUri,
linkerName
FROM azure.service_connector.linkers
WHERE resourceUri = 'replace-me';
SELECT
systemData as system_data,
json_extract_path_text(properties, '$.targetService') as "target_service",
json_extract_path_text(properties, '$.authInfo') as "auth_info",
json_extract_path_text(properties, '$.clientType') as "client_type",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.vNetSolution') as "vnet_solution",
json_extract_path_text(properties, '$.secretStore') as "secret_store",
json_extract_path_text(properties, '$.scope') as "scope",
json_extract_path_text(properties, '$.publicNetworkSolution') as "public_network_solution",
json_extract_path_text(properties, '$.configurationInfo') as "configuration_info",
resourceUri,
linkerName
FROM azure.service_connector.linkers
WHERE resourceUri = 'replace-me';