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

NameDatatypeDescription
application_idtextfield from the properties object
application_nametextfield from the properties object
application_typetextfield from the properties object
galleryAppNametextfield from the properties object
popularitytextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
testBaseAccountNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTgalleryAppName, resourceGroupName, subscriptionId, testBaseAccountNameGets a gallery application to prepare a test run for a Test Base Account.
listSELECTresourceGroupName, subscriptionId, testBaseAccountNameLists all gallery applications currently available for test runs under a Test Base Account which matches user query.

SELECT examples

Lists all gallery applications currently available for test runs under a Test Base Account which matches user query.

SELECT
application_id,
application_name,
application_type,
galleryAppName,
popularity,
provisioning_state,
resourceGroupName,
subscriptionId,
testBaseAccountName
FROM azure_extras.test_base.vw_gallery_apps
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';