Skip to main content

free_hour_balances

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

Overview

Namefree_hour_balances
TypeResource
Idazure_extras.test_base.free_hour_balances

Fields

The following fields are returned by SELECT queries:

Succeeded to get the Test Base free hour balance.

NameDatatypeDescription
propertiesobjectProperties of a Free Hour Balance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, testBaseAccountName, freeHourBalanceNameReturn the Test Base free hour balance.
listselectsubscriptionId, resourceGroupName, testBaseAccountNameReturn the Test Base free hour balances list.

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
freeHourBalanceNamestringThe name of the free hour balance of a Test Base Account.
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

Return the Test Base free hour balance.

SELECT
properties
FROM azure_extras.test_base.free_hour_balances
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND testBaseAccountName = '{{ testBaseAccountName }}' -- required
AND freeHourBalanceName = '{{ freeHourBalanceName }}' -- required
;