vw_serverless_runtimes
Creates, updates, deletes, gets or lists a vw_serverless_runtimes
resource.
Overview
Name | vw_serverless_runtimes |
Type | View |
Id | azure_isv.informatica.vw_serverless_runtimes |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.platform') as "platform",
JSON_EXTRACT(properties, '$.applicationType') as "application_type",
JSON_EXTRACT(properties, '$.computeUnits') as "compute_units",
JSON_EXTRACT(properties, '$.executionTimeout') as "execution_timeout",
JSON_EXTRACT(properties, '$.serverlessAccountLocation') as "serverless_account_location",
JSON_EXTRACT(properties, '$.serverlessRuntimeNetworkProfile') as "serverless_runtime_network_profile",
JSON_EXTRACT(properties, '$.advancedCustomProperties') as "advanced_custom_properties",
JSON_EXTRACT(properties, '$.supplementaryFileLocation') as "supplementary_file_location",
JSON_EXTRACT(properties, '$.serverlessRuntimeConfig') as "serverless_runtime_config",
JSON_EXTRACT(properties, '$.serverlessRuntimeTags') as "serverless_runtime_tags",
JSON_EXTRACT(properties, '$.serverlessRuntimeUserContextProperties') as "serverless_runtime_user_context_properties",
subscriptionId,
resourceGroupName,
organizationName,
serverlessRuntimeName
FROM azure_isv.informatica.serverless_runtimes
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND organizationName = 'replace-me' AND serverlessRuntimeName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.platform') as "platform",
json_extract_path_text(properties, '$.applicationType') as "application_type",
json_extract_path_text(properties, '$.computeUnits') as "compute_units",
json_extract_path_text(properties, '$.executionTimeout') as "execution_timeout",
json_extract_path_text(properties, '$.serverlessAccountLocation') as "serverless_account_location",
json_extract_path_text(properties, '$.serverlessRuntimeNetworkProfile') as "serverless_runtime_network_profile",
json_extract_path_text(properties, '$.advancedCustomProperties') as "advanced_custom_properties",
json_extract_path_text(properties, '$.supplementaryFileLocation') as "supplementary_file_location",
json_extract_path_text(properties, '$.serverlessRuntimeConfig') as "serverless_runtime_config",
json_extract_path_text(properties, '$.serverlessRuntimeTags') as "serverless_runtime_tags",
json_extract_path_text(properties, '$.serverlessRuntimeUserContextProperties') as "serverless_runtime_user_context_properties",
subscriptionId,
resourceGroupName,
organizationName,
serverlessRuntimeName
FROM azure_isv.informatica.serverless_runtimes
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND organizationName = 'replace-me' AND serverlessRuntimeName = 'replace-me';