Skip to main content

addresses_at_subscription_levels

Creates, updates, deletes, gets or lists an addresses_at_subscription_levels resource.

Overview

Nameaddresses_at_subscription_levels
TypeResource
Idazure_extras.edgeorder.addresses_at_subscription_levels

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. # pylint: disable=line-too-long
namestringThe name of the resource.
addressValidationStatusstringStatus of address validation. Known values are: "Valid", "Invalid", and "Ambiguous".
contactDetailsobjectContact details for the address. Required.
locationstringThe geo-location where the resource lives. Required.
shippingAddressobjectShipping details for the address.
systemDataobjectRepresents resource creation and update time.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_addresses_at_subscription_levelselectsubscription_id$filter, $skipTokenLists all the addresses available under the 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.

NameDatatypeDescription
subscription_idstring
$filterstring$filter is supported to filter based on shipping address properties. Filter supports only equals operation. Default value is None.
$skipTokenstring$skipToken is supported on Get list of addresses, which provides the next page in the list of addresses. Default value is None.

SELECT examples

Lists all the addresses available under the subscription.

SELECT
id,
name,
addressValidationStatus,
contactDetails,
location,
shippingAddress,
systemData,
tags,
type
FROM azure_extras.edgeorder.addresses_at_subscription_levels
WHERE subscription_id = '{{ subscription_id }}' -- required
AND $filter = '{{ $filter }}'
AND $skipToken = '{{ $skipToken }}'
;