Skip to main content

flighting_rings

Creates, updates, deletes, gets or lists a flighting_rings resource.

Overview

Nameflighting_rings
TypeResource
Idazure_extras.testbase.flighting_rings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
actualFlightingRingNamestringThe actual name of a flighting ring of a Test Base Account.
systemDataobjectThe system metadata relating to this resource.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, test_base_account_name, flighting_ring_resource_name, subscription_idGets a flighting ring of a Test Base Account.
listselectresource_group_name, test_base_account_name, subscription_idLists 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.

NameDatatypeDescription
flighting_ring_resource_namestringThe resource name of a flighting ring. Required.
resource_group_namestringThe name of the resource group that contains the resource. Required.
subscription_idstring
test_base_account_namestringThe resource name of the Test Base Account. Required.

SELECT examples

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
;