flighting_rings
Creates, updates, deletes, gets or lists a flighting_rings resource.
Overview
| Name | flighting_rings |
| Type | Resource |
| Id | azure_extras.testbase.flighting_rings |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
actualFlightingRingName | string | The actual name of a flighting ring of a Test Base Account. |
systemData | object | The system metadata relating to this resource. |
type | string | Resource type. |
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
actualFlightingRingName | string | The actual name of a flighting ring of a Test Base Account. |
systemData | object | The system metadata relating to this resource. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, test_base_account_name, flighting_ring_resource_name, subscription_id | Gets a flighting ring of a Test Base Account. | |
list | select | resource_group_name, test_base_account_name, subscription_id | 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 |
|---|---|---|
flighting_ring_resource_name | string | The resource name of a flighting ring. Required. |
resource_group_name | string | The name of the resource group that contains the resource. Required. |
subscription_id | string | |
test_base_account_name | string | The resource name of the Test Base Account. Required. |
SELECT examples
- get
- list
Gets a flighting ring of a Test Base Account.
SELECT
id,
name,
actualFlightingRingName,
systemData,
type
FROM azure_extras.testbase.flighting_rings
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND test_base_account_name = '{{ test_base_account_name }}' -- required
AND flighting_ring_resource_name = '{{ flighting_ring_resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Lists all the flighting rings of a Test Base Account.
SELECT
id,
name,
actualFlightingRingName,
systemData,
type
FROM azure_extras.testbase.flighting_rings
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND test_base_account_name = '{{ test_base_account_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;