first_party_apps
Creates, updates, deletes, gets or lists a first_party_apps
resource.
Overview
Name | first_party_apps |
Type | Resource |
Id | azure_extras.test_base.first_party_apps |
Fields
- vw_first_party_apps
- first_party_apps
Name | Datatype | Description |
---|---|---|
architecture | text | field from the properties object |
channel | text | field from the properties object |
firstPartyAppResourceName | text | field from the properties object |
media_type | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
ring | text | field from the properties object |
subscriptionId | text | field from the properties object |
supported_products | text | field from the properties object |
testBaseAccountName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of a first party application. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | firstPartyAppResourceName, resourceGroupName, subscriptionId, testBaseAccountName | Gets a first party application to prepare a test run for a Test Base Account. |
list | SELECT | resourceGroupName, subscriptionId, testBaseAccountName | Lists all first party applications currently available for test runs under a Test Base Account. |
SELECT
examples
Lists all first party applications currently available for test runs under a Test Base Account.
- vw_first_party_apps
- first_party_apps
SELECT
architecture,
channel,
firstPartyAppResourceName,
media_type,
provisioning_state,
resourceGroupName,
ring,
subscriptionId,
supported_products,
testBaseAccountName
FROM azure_extras.test_base.vw_first_party_apps
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';
SELECT
properties
FROM azure_extras.test_base.first_party_apps
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';