gallery_apps
Creates, updates, deletes, gets or lists a gallery_apps
resource.
Overview
Name | gallery_apps |
Type | Resource |
Id | azure_extras.test_base.gallery_apps |
Fields
- vw_gallery_apps
- gallery_apps
Name | Datatype | Description |
---|---|---|
application_id | text | field from the properties object |
application_name | text | field from the properties object |
application_type | text | field from the properties object |
galleryAppName | text | field from the properties object |
popularity | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
testBaseAccountName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of a gallery application. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | galleryAppName, resourceGroupName, subscriptionId, testBaseAccountName | Gets a gallery application to prepare a test run for a Test Base Account. |
list | SELECT | resourceGroupName, subscriptionId, testBaseAccountName | Lists 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.
- vw_gallery_apps
- gallery_apps
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 }}';
SELECT
properties
FROM azure_extras.test_base.gallery_apps
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';