flighting_rings
Creates, updates, deletes, gets or lists a flighting_rings
resource.
Overview
Name | flighting_rings |
Type | Resource |
Id | azure_extras.test_base.flighting_rings |
Fields
- vw_flighting_rings
- flighting_rings
Name | Datatype | Description |
---|---|---|
actual_flighting_ring_name | text | field from the properties object |
flightingRingResourceName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
testBaseAccountName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The Flighting Ring properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | flightingRingResourceName, resourceGroupName, subscriptionId, testBaseAccountName | Gets a flighting ring of a Test Base Account. |
list | SELECT | resourceGroupName, subscriptionId, testBaseAccountName | Lists all the flighting rings of a Test Base Account. |
SELECT
examples
Lists all the flighting rings of a Test Base Account.
- vw_flighting_rings
- flighting_rings
SELECT
actual_flighting_ring_name,
flightingRingResourceName,
resourceGroupName,
subscriptionId,
testBaseAccountName
FROM azure_extras.test_base.vw_flighting_rings
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';
SELECT
properties
FROM azure_extras.test_base.flighting_rings
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';