Skip to main content

tenant_configurations

Creates, updates, deletes, gets or lists a tenant_configurations resource.

Overview

Nametenant_configurations
TypeResource
Idazure.portal.tenant_configurations

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectconfigurationNameGets the tenant configuration.
listselectGets list of the tenant configurations.
createinsertconfigurationNameCreate the tenant configuration. If configuration already exists - update it. User has to be a Tenant Admin for this operation.
deletedeleteconfigurationNameDelete the tenant configuration. User has to be a Tenant Admin for this operation.

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.

NameDatatypeDescription
configurationNamestringThe name of the Configuration

SELECT examples

Gets the tenant configuration.

SELECT
properties
FROM azure.portal.tenant_configurations
WHERE configurationName = '{{ configurationName }}' -- required
;

INSERT examples

Create the tenant configuration. If configuration already exists - update it. User has to be a Tenant Admin for this operation.

INSERT INTO azure.portal.tenant_configurations (
data__properties,
configurationName
)
SELECT
'{{ properties }}',
'{{ configurationName }}'
RETURNING
properties
;

DELETE examples

Delete the tenant configuration. User has to be a Tenant Admin for this operation.

DELETE FROM azure.portal.tenant_configurations
WHERE configurationName = '{{ configurationName }}' --required
;