network_operation_results
Creates, updates, deletes, gets or lists a network_operation_results
resource.
Overview
Name | network_operation_results |
Type | Resource |
Id | azure_stack.fabric_admin.network_operation_results |
Fields
- vw_network_operation_results
- network_operation_results
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
instances | text | field from the properties object |
location | text | The region where the resource is located. |
operation | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
type | text | Type of resource. |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | The region where the resource is located. |
properties | object | Network operation result properties. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operation, resourceGroupName, subscriptionId | Returns the status of a network operation. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns a list of all network operation results at a location. |
SELECT
examples
Returns a list of all network operation results at a location.
- vw_network_operation_results
- network_operation_results
SELECT
id,
name,
instances,
location,
operation,
provisioning_state,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure_stack.fabric_admin.vw_network_operation_results
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.network_operation_results
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';