TenantConfigurations interface
Interface representing a TenantConfigurations.
Methods
create(string, Configuration, Tenant |
Create the tenant configuration. If configuration already exists - update it. User has to be a Tenant Admin for this operation. |
delete(string, Tenant |
Delete the tenant configuration. User has to be a Tenant Admin for this operation. |
get(string, Tenant |
Gets the tenant configuration. |
list(Tenant |
Gets list of the tenant configurations. |
Method Details
create(string, Configuration, TenantConfigurationsCreateOptionalParams)
Create the tenant configuration. If configuration already exists - update it. User has to be a Tenant Admin for this operation.
function create(configurationName: string, tenantConfiguration: Configuration, options?: TenantConfigurationsCreateOptionalParams): Promise<Configuration>
Parameters
- configurationName
-
string
The configuration name. Value must be 'default'
- tenantConfiguration
- Configuration
The parameters required to create or update tenant configuration.
The options parameters.
Returns
Promise<Configuration>
delete(string, TenantConfigurationsDeleteOptionalParams)
Delete the tenant configuration. User has to be a Tenant Admin for this operation.
function delete(configurationName: string, options?: TenantConfigurationsDeleteOptionalParams): Promise<void>
Parameters
- configurationName
-
string
The configuration name. Value must be 'default'
The options parameters.
Returns
Promise<void>
get(string, TenantConfigurationsGetOptionalParams)
Gets the tenant configuration.
function get(configurationName: string, options?: TenantConfigurationsGetOptionalParams): Promise<Configuration>
Parameters
- configurationName
-
string
The configuration name. Value must be 'default'
The options parameters.
Returns
Promise<Configuration>
list(TenantConfigurationsListOptionalParams)
Gets list of the tenant configurations.
function list(options?: TenantConfigurationsListOptionalParams): PagedAsyncIterableIterator<Configuration, Configuration[], PageSettings>
Parameters
The options parameters.
Returns
Azure SDK for JavaScript