Skip to main content

gallery_apps

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

Overview

Namegallery_apps
TypeResource
Idazure_extras.test_base.gallery_apps

Fields

The following fields are returned by SELECT queries:

The operation is completed.

NameDatatypeDescription
propertiesobjectProperties of a gallery application.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, testBaseAccountName, galleryAppNameGets a gallery application to prepare a test run for a Test Base Account.
listselectsubscriptionId, resourceGroupName, testBaseAccountNamekeyword, applicationType, orderBy, topLists all gallery applications currently available for test runs under a Test Base Account which matches user query.

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
galleryAppNamestringThe resource name of a gallery 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.
applicationTypestringThe type of the gallery application.
keywordstringThe keywords which listed results should be related to.
orderBystringThe order of result list.
topinteger (int32)How many of the sorted items to consider including in the result set.

SELECT examples

Gets a gallery application to prepare a test run for a Test Base Account.

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