次の方法で共有


TenantConfigurations interface

TenantConfigurations を表すインターフェイス。

メソッド

create(string, Configuration, TenantConfigurationsCreateOptionalParams)

テナント構成を作成します。 構成が既に存在する場合は、更新します。 この操作を行うには、ユーザーはテナント管理者である必要があります。

delete(string, TenantConfigurationsDeleteOptionalParams)

テナント構成を削除します。 この操作を行うには、ユーザーはテナント管理者である必要があります。

get(string, TenantConfigurationsGetOptionalParams)

テナント構成を取得します。

list(TenantConfigurationsListOptionalParams)

テナント構成の一覧を取得します。

メソッドの詳細

create(string, Configuration, TenantConfigurationsCreateOptionalParams)

テナント構成を作成します。 構成が既に存在する場合は、更新します。 この操作を行うには、ユーザーはテナント管理者である必要があります。

function create(configurationName: string, tenantConfiguration: Configuration, options?: TenantConfigurationsCreateOptionalParams): Promise<Configuration>

パラメーター

configurationName

string

構成の名前。 値は 'default' である必要があります

tenantConfiguration
Configuration

テナント構成の作成または更新に必要なパラメーター。

options
TenantConfigurationsCreateOptionalParams

options パラメーター。

戻り値

Promise<Configuration>

delete(string, TenantConfigurationsDeleteOptionalParams)

テナント構成を削除します。 この操作を行うには、ユーザーはテナント管理者である必要があります。

function delete(configurationName: string, options?: TenantConfigurationsDeleteOptionalParams): Promise<void>

パラメーター

configurationName

string

構成の名前。 値は 'default' である必要があります

options
TenantConfigurationsDeleteOptionalParams

options パラメーター。

戻り値

Promise<void>

get(string, TenantConfigurationsGetOptionalParams)

テナント構成を取得します。

function get(configurationName: string, options?: TenantConfigurationsGetOptionalParams): Promise<Configuration>

パラメーター

configurationName

string

構成の名前。 値は 'default' である必要があります

options
TenantConfigurationsGetOptionalParams

options パラメーター。

戻り値

Promise<Configuration>

list(TenantConfigurationsListOptionalParams)

テナント構成の一覧を取得します。

function list(options?: TenantConfigurationsListOptionalParams): PagedAsyncIterableIterator<Configuration, Configuration[], PageSettings>

パラメーター

options
TenantConfigurationsListOptionalParams

options パラメーター。

戻り値