vw_organizations
Creates, updates, deletes, gets or lists a vw_organizations
resource.
Overview
Name | vw_organizations |
Type | View |
Id | azure_isv.confluent.vw_organizations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
tags as tags,
JSON_EXTRACT(properties, '$.createdTime') as "created_time",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.organizationId') as "organization_id",
JSON_EXTRACT(properties, '$.ssoUrl') as "sso_url",
JSON_EXTRACT(properties, '$.offerDetail') as "offer_detail",
JSON_EXTRACT(properties, '$.userDetail') as "user_detail",
JSON_EXTRACT(properties, '$.linkOrganization') as "link_organization",
subscriptionId,
resourceGroupName,
organizationName
FROM azure_isv.confluent.organizations
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
tags as tags,
json_extract_path_text(properties, '$.createdTime') as "created_time",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.organizationId') as "organization_id",
json_extract_path_text(properties, '$.ssoUrl') as "sso_url",
json_extract_path_text(properties, '$.offerDetail') as "offer_detail",
json_extract_path_text(properties, '$.userDetail') as "user_detail",
json_extract_path_text(properties, '$.linkOrganization') as "link_organization",
subscriptionId,
resourceGroupName,
organizationName
FROM azure_isv.confluent.organizations
WHERE subscriptionId = 'replace-me';