Skip to main content

first_party_apps

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

Overview

Namefirst_party_apps
TypeResource
Idazure_extras.test_base.first_party_apps

Fields

The following fields are returned by SELECT queries:

The operation is completed.

NameDatatypeDescription
propertiesobjectProperties of a first party application.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, testBaseAccountName, firstPartyAppResourceNameGets a first party application to prepare a test run for a Test Base Account.
listselectsubscriptionId, resourceGroupName, testBaseAccountNameLists all first party applications currently available for test runs under 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
firstPartyAppResourceNamestringThe resource name of a first party application.
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 first party application to prepare a test run for a Test Base Account.

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