applications
Creates, updates, deletes, gets or lists a applications
resource.
Overview
Name | applications |
Type | Resource |
Id | azure_extras.saas.applications |
Fields
Name | Datatype | Description |
---|---|---|
id | string | the resource Id. |
name | string | the resource name. |
location | string | the resource location. |
properties | object | Saas resource properties. |
tags | object | the resource tags. |
type | string | the resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId | Gets all SaaS resources by subscription id and resource group name. |
SELECT
examples
Gets all SaaS resources by subscription id and resource group name.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_extras.saas.applications
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';