Skip to main content

gallery_app_skus

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

Overview

Namegallery_app_skus
TypeResource
Idazure_extras.test_base.gallery_app_skus

Fields

NameDatatypeDescription
application_typetextfield from the properties object
galleryAppNametextfield from the properties object
galleryAppSkuNametextfield 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, galleryAppSkuName, resourceGroupName, subscriptionId, testBaseAccountNameGets a gallery application SKU for test runs under a Test Base account.
listSELECTgalleryAppName, resourceGroupName, subscriptionId, testBaseAccountNameLists all SKUs of a gallery application currently available for test runs under a Test Base account.

SELECT examples

Lists all SKUs of a gallery application currently available for test runs under a Test Base account.

SELECT
application_type,
galleryAppName,
galleryAppSkuName,
provisioning_state,
resourceGroupName,
subscriptionId,
testBaseAccountName
FROM azure_extras.test_base.vw_gallery_app_skus
WHERE galleryAppName = '{{ galleryAppName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';