tenants
Creates, updates, deletes, gets or lists a tenants
resource.
Overview
Name | tenants |
Type | Resource |
Id | azure.resources.tenants |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The fully qualified ID of the tenant. For example, /tenants/00000000-0000-0000-0000-000000000000. |
country | string | Country/region name of the address for the tenant. |
countryCode | string | Country/region abbreviation for the tenant. |
defaultDomain | string | The default domain for the tenant. |
displayName | string | The display name of the tenant. |
domains | array | The list of domains for the tenant. |
tenantBrandingLogoUrl | string | The tenant's branding logo URL. Only available for 'Home' tenant category. |
tenantCategory | string | Category of the tenant. |
tenantId | string | The tenant ID. For example, 00000000-0000-0000-0000-000000000000. |
tenantType | string | The tenant type. Only available for 'Home' tenant category. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Gets the tenants for your account. |
SELECT
examples
Gets the tenants for your account.
SELECT
id,
country,
countryCode,
defaultDomain,
displayName,
domains,
tenantBrandingLogoUrl,
tenantCategory,
tenantId,
tenantType
FROM azure.resources.tenants
;