l3_isolation_domains
Creates, updates, deletes, gets or lists a l3_isolation_domains
resource.
Overview
Name | l3_isolation_domains |
Type | Resource |
Id | azure.managed_network_fabric.l3_isolation_domains |
Fields
- vw_l3_isolation_domains
- l3_isolation_domains
Name | Datatype | Description |
---|---|---|
administrative_state | text | field from the properties object |
aggregate_route_configuration | text | field from the properties object |
annotation | text | field from the properties object |
configuration_state | text | field from the properties object |
connected_subnet_route_policy | text | field from the properties object |
l3IsolationDomainName | text | field from the properties object |
location | text | The geo-location where the resource lives |
network_fabric_id | text | field from the properties object |
provisioning_state | text | field from the properties object |
redistribute_connected_subnets | text | field from the properties object |
redistribute_static_routes | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | L3 Isolation Domain Properties defines the properties of the resource. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | l3IsolationDomainName, resourceGroupName, subscriptionId | Retrieves details of this L3 Isolation Domain. |
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | Displays L3IsolationDomains list by resource group GET method. |
list_by_subscription | SELECT | subscriptionId | Displays L3IsolationDomains list by subscription GET method. |
create | INSERT | l3IsolationDomainName, resourceGroupName, subscriptionId, data__properties | Create isolation domain resources for layer 3 connectivity between compute nodes and for communication with external services .This configuration is applied on the devices only after the creation of networks is completed and isolation domain is enabled. |
delete | DELETE | l3IsolationDomainName, resourceGroupName, subscriptionId | Deletes layer 3 connectivity between compute nodes by managed by named L3 Isolation name. |
update | UPDATE | l3IsolationDomainName, resourceGroupName, subscriptionId | API to update certain properties of the L3 Isolation Domain resource. |
commit_configuration | EXEC | l3IsolationDomainName, resourceGroupName, subscriptionId | Commits the configuration of the given resources. |
update_administrative_state | EXEC | l3IsolationDomainName, resourceGroupName, subscriptionId | Enables racks for this Isolation Domain. |
validate_configuration | EXEC | l3IsolationDomainName, resourceGroupName, subscriptionId | Validates the configuration of the resources. |
SELECT
examples
Displays L3IsolationDomains list by subscription GET method.
- vw_l3_isolation_domains
- l3_isolation_domains
SELECT
administrative_state,
aggregate_route_configuration,
annotation,
configuration_state,
connected_subnet_route_policy,
l3IsolationDomainName,
location,
network_fabric_id,
provisioning_state,
redistribute_connected_subnets,
redistribute_static_routes,
resourceGroupName,
subscriptionId,
tags
FROM azure.managed_network_fabric.vw_l3_isolation_domains
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
location,
properties,
tags
FROM azure.managed_network_fabric.l3_isolation_domains
WHERE subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new l3_isolation_domains
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.managed_network_fabric.l3_isolation_domains (
l3IsolationDomainName,
resourceGroupName,
subscriptionId,
data__properties,
properties,
tags,
location
)
SELECT
'{{ l3IsolationDomainName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ tags }}',
'{{ location }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: annotation
value: string
- name: redistributeConnectedSubnets
value: string
- name: redistributeStaticRoutes
value: string
- name: aggregateRouteConfiguration
value:
- name: ipv4Routes
value:
- - name: prefix
value: string
- name: ipv6Routes
value:
- - name: prefix
value: string
- name: connectedSubnetRoutePolicy
value:
- name: exportRoutePolicyId
value: []
- name: exportRoutePolicy
value: []
- name: networkFabricId
value: []
- name: configurationState
value: []
- name: provisioningState
value: []
- name: administrativeState
value: []
- name: tags
value: object
- name: location
value: string
UPDATE
example
Updates a l3_isolation_domains
resource.
/*+ update */
UPDATE azure.managed_network_fabric.l3_isolation_domains
SET
properties = '{{ properties }}',
tags = '{{ tags }}'
WHERE
l3IsolationDomainName = '{{ l3IsolationDomainName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified l3_isolation_domains
resource.
/*+ delete */
DELETE FROM azure.managed_network_fabric.l3_isolation_domains
WHERE l3IsolationDomainName = '{{ l3IsolationDomainName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';