TenantConfigurations interface
TenantConfigurations を表すインターフェイス。
メソッド
create(string, Configuration, Tenant |
テナント構成を作成します。 構成が既に存在する場合は、更新します。 この操作を行うには、ユーザーはテナント管理者である必要があります。 |
delete(string, Tenant |
テナント構成を削除します。 この操作を行うには、ユーザーはテナント管理者である必要があります。 |
get(string, Tenant |
テナント構成を取得します。 |
list(Tenant |
テナント構成の一覧を取得します。 |
メソッドの詳細
create(string, Configuration, TenantConfigurationsCreateOptionalParams)
テナント構成を作成します。 構成が既に存在する場合は、更新します。 この操作を行うには、ユーザーはテナント管理者である必要があります。
function create(configurationName: string, tenantConfiguration: Configuration, options?: TenantConfigurationsCreateOptionalParams): Promise<Configuration>
パラメーター
- configurationName
-
string
構成の名前。 値は 'default' である必要があります
- tenantConfiguration
- Configuration
テナント構成の作成または更新に必要なパラメーター。
options パラメーター。
戻り値
Promise<Configuration>
delete(string, TenantConfigurationsDeleteOptionalParams)
テナント構成を削除します。 この操作を行うには、ユーザーはテナント管理者である必要があります。
function delete(configurationName: string, options?: TenantConfigurationsDeleteOptionalParams): Promise<void>
パラメーター
- configurationName
-
string
構成の名前。 値は 'default' である必要があります
options パラメーター。
戻り値
Promise<void>
get(string, TenantConfigurationsGetOptionalParams)
テナント構成を取得します。
function get(configurationName: string, options?: TenantConfigurationsGetOptionalParams): Promise<Configuration>
パラメーター
- configurationName
-
string
構成の名前。 値は 'default' である必要があります
options パラメーター。
戻り値
Promise<Configuration>
list(TenantConfigurationsListOptionalParams)
テナント構成の一覧を取得します。
function list(options?: TenantConfigurationsListOptionalParams): PagedAsyncIterableIterator<Configuration, Configuration[], PageSettings>
パラメーター
options パラメーター。
戻り値
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for JavaScript