Skip to main content

flighting_rings

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

Overview

Nameflighting_rings
TypeResource
Idazure_extras.test_base.flighting_rings

Fields

The following fields are returned by SELECT queries:

The operation is completed.

NameDatatypeDescription
propertiesobjectFlighting Ring properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, testBaseAccountName, flightingRingResourceNameGets a flighting ring of a Test Base Account.
listselectsubscriptionId, resourceGroupName, testBaseAccountNameLists 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
flightingRingResourceNamestringThe resource name of a flighting ring.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
testBaseAccountNamestringThe resource name of the Test Base Account.

SELECT examples

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
;