express_route_provider_ports_locations
Creates, updates, deletes, gets or lists an express_route_provider_ports_locations
resource.
Overview
Name | express_route_provider_ports_locations |
Type | Resource |
Id | azure.network.express_route_provider_ports_locations |
Fields
The following fields are returned by SELECT
queries:
- list
Request successful. The operation returns a list of ExpressRouteProviderPort resources at a location. If there are no ports for the provider, an empty list is returned.
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
etag | string | A unique read-only string that changes whenever the resource is updated. |
properties | object | Properties of the express route Service Provider Port. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | $filter | Retrieves all the ExpressRouteProviderPorts in a subscription. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
$filter | string | The filter to apply on the operation. For example, you can use $filter=location eq '{state}'. |
SELECT
examples
- list
Retrieves all the ExpressRouteProviderPorts in a subscription.
SELECT
id,
name,
etag,
properties,
systemData,
type
FROM azure.network.express_route_provider_ports_locations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND $filter = '{{ $filter }}'
;