vw_registration_definitions
Creates, updates, deletes, gets or lists a vw_registration_definitions
resource.
Overview
Name | vw_registration_definitions |
Type | View |
Id | azure.managed_services.vw_registration_definitions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
plan as plan,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.authorizations') as "authorizations",
JSON_EXTRACT(properties, '$.eligibleAuthorizations') as "eligible_authorizations",
JSON_EXTRACT(properties, '$.registrationDefinitionName') as "registration_definition_name",
JSON_EXTRACT(properties, '$.managedByTenantId') as "managed_by_tenant_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.manageeTenantId') as "managee_tenant_id",
JSON_EXTRACT(properties, '$.manageeTenantName') as "managee_tenant_name",
JSON_EXTRACT(properties, '$.managedByTenantName') as "managed_by_tenant_name",
scope,
registrationDefinitionId
FROM azure.managed_services.registration_definitions
WHERE scope = 'replace-me';
SELECT
id as id,
name as name,
plan as plan,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.authorizations') as "authorizations",
json_extract_path_text(properties, '$.eligibleAuthorizations') as "eligible_authorizations",
json_extract_path_text(properties, '$.registrationDefinitionName') as "registration_definition_name",
json_extract_path_text(properties, '$.managedByTenantId') as "managed_by_tenant_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.manageeTenantId') as "managee_tenant_id",
json_extract_path_text(properties, '$.manageeTenantName') as "managee_tenant_name",
json_extract_path_text(properties, '$.managedByTenantName') as "managed_by_tenant_name",
scope,
registrationDefinitionId
FROM azure.managed_services.registration_definitions
WHERE scope = 'replace-me';