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
The following fields are returned by SELECT
queries:
- get
- list
The operation is completed.
Name | Datatype | Description |
---|---|---|
properties | object | Properties of a gallery application. |
The operation is completed.
Name | Datatype | Description |
---|---|---|
properties | object | Properties of a gallery application. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , testBaseAccountName , galleryAppName | Gets a gallery application to prepare a test run for a Test Base Account. | |
list | select | subscriptionId , resourceGroupName , testBaseAccountName | keyword , applicationType , orderBy , top | Lists 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.
Name | Datatype | Description |
---|---|---|
galleryAppName | string | The resource name of a gallery application. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
testBaseAccountName | string | The resource name of the Test Base Account. |
applicationType | string | The type of the gallery application. |
keyword | string | The keywords which listed results should be related to. |
orderBy | string | The order of result list. |
top | integer (int32) | How many of the sorted items to consider including in the result set. |
SELECT
examples
- get
- list
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
;
Lists all gallery applications currently available for test runs under a Test Base Account which matches user query.
SELECT
properties
FROM azure_extras.test_base.gallery_apps
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND testBaseAccountName = '{{ testBaseAccountName }}' -- required
AND keyword = '{{ keyword }}'
AND applicationType = '{{ applicationType }}'
AND orderBy = '{{ orderBy }}'
AND top = '{{ top }}'
;