topologies
Creates, updates, deletes, gets or lists a topologies
resource.
Overview
Name | topologies |
Type | Resource |
Id | azure.security.topologies |
Fields
- vw_topologies
- topologies
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource name |
ascLocation | text | field from the properties object |
calculated_date_time | text | field from the properties object |
location | text | Location where the resource is stored |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
topologyResourceName | text | field from the properties object |
topology_resources | text | field from the properties object |
type | text | Resource type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
location | string | Location where the resource is stored |
properties | object | |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | ascLocation, resourceGroupName, subscriptionId, topologyResourceName | Gets a specific topology component. |
list | SELECT | subscriptionId | Gets a list that allows to build a topology view of a subscription. |
list_by_home_region | SELECT | ascLocation, subscriptionId | Gets a list that allows to build a topology view of a subscription and location. |
SELECT
examples
Gets a list that allows to build a topology view of a subscription.
- vw_topologies
- topologies
SELECT
id,
name,
ascLocation,
calculated_date_time,
location,
resourceGroupName,
subscriptionId,
topologyResourceName,
topology_resources,
type
FROM azure.security.vw_topologies
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.security.topologies
WHERE subscriptionId = '{{ subscriptionId }}';