operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.network.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action" |
actionType | string | Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs. |
display | object | Localized display information for this particular operation. |
isDataAction | boolean | Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations. |
origin | string | The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists all of the available Network Rest API operations. |
check_dns_name_availability | EXEC | domainNameLabel, location, subscriptionId | Checks whether a domain name in the cloudapp.azure.com zone is available for use. |
disconnect_active_sessions | EXEC | bastionHostName, resourceGroupName, subscriptionId | Returns the list of currently active sessions on the Bastion. |
express_route_provider_port | EXEC | providerport, subscriptionId | Retrieves detail of a provider port. |
generatevirtualwanvpnserverconfigurationvpnprofile | EXEC | resourceGroupName, subscriptionId, virtualWANName | Generates a unique VPN profile for P2S clients for VirtualWan and associated VpnServerConfiguration combination in the specified resource group. |
supported_security_providers | EXEC | resourceGroupName, subscriptionId, virtualWANName | Gives the supported security providers for the virtual wan. |
SELECT
examples
Lists all of the available Network Rest API operations.
SELECT
name,
actionType,
display,
isDataAction,
origin
FROM azure.network.operations
;