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
The following fields are returned by SELECT queries:
- get
- list
The operation is completed.
| Name | Datatype | Description |
|---|---|---|
properties | object | Flighting Ring properties. |
The operation is completed.
| Name | Datatype | Description |
|---|---|---|
properties | object | Flighting Ring properties. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, testBaseAccountName, flightingRingResourceName | Gets a flighting ring of a Test Base Account. | |
list | select | subscriptionId, resourceGroupName, testBaseAccountName | Lists all the flighting rings of a Test Base Account. |
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 |
|---|---|---|
flightingRingResourceName | string | The resource name of a flighting ring. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
testBaseAccountName | string | The resource name of the Test Base Account. |
SELECT examples
- get
- list
Gets a flighting ring of a Test Base Account.
SELECT
properties
FROM azure_extras.test_base.flighting_rings
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND testBaseAccountName = '{{ testBaseAccountName }}' -- required
AND flightingRingResourceName = '{{ flightingRingResourceName }}' -- required
;
Lists all the flighting rings of a Test Base Account.
SELECT
properties
FROM azure_extras.test_base.flighting_rings
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND testBaseAccountName = '{{ testBaseAccountName }}' -- required
;