allowed_connections
Creates, updates, deletes, gets or lists a allowed_connections
resource.
Overview
Name | allowed_connections |
Type | Resource |
Id | azure.security.allowed_connections |
Fields
- vw_allowed_connections
- allowed_connections
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 |
connectable_resources | text | field from the properties object |
connectionType | 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 |
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 | Describes the allowed traffic between Azure resources |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | ascLocation, connectionType, resourceGroupName, subscriptionId | Gets the list of all possible traffic between resources for the subscription and location, based on connection type. |
list | SELECT | subscriptionId | Gets the list of all possible traffic between resources for the subscription |
list_by_home_region | SELECT | ascLocation, subscriptionId | Gets the list of all possible traffic between resources for the subscription and location. |
SELECT
examples
Gets the list of all possible traffic between resources for the subscription
- vw_allowed_connections
- allowed_connections
SELECT
id,
name,
ascLocation,
calculated_date_time,
connectable_resources,
connectionType,
location,
resourceGroupName,
subscriptionId,
type
FROM azure.security.vw_allowed_connections
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.security.allowed_connections
WHERE subscriptionId = '{{ subscriptionId }}';