ResourceIdentity クラス

  • java.lang.Object
    • com.microsoft.azure.management.sql.ResourceIdentity

public class ResourceIdentity

リソースの Azure Active Directory ID 構成。

コンストラクターの概要

コンストラクター 説明
ResourceIdentity()

メソッドの概要

修飾子と型 メソッドと説明
java.util.UUID principalId()

Azure Active Directory プリンシパル ID を取得します。

java.util.UUID tenantId()

Azure Active Directory テナント ID を取得します。

IdentityType type()

ID の種類を取得します。

ResourceIdentity withType(IdentityType type)

ID の種類を設定します。

メソッドの継承元: java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

コンストラクターの詳細

ResourceIdentity

public ResourceIdentity()

メソッドの詳細

principalId

public UUID principalId()

Azure Active Directory プリンシパル ID を取得します。

Returns:

principalId 値

tenantId

public UUID tenantId()

Azure Active Directory テナント ID を取得します。

Returns:

tenantId 値

type

public IdentityType type()

ID の種類を取得します。 リソースの Azure Active Directory プリンシパルを自動的に作成して割り当てるには、これを "SystemAssigned" に設定します。 使用可能な値は、'SystemAssigned' です。

Returns:

型の値

withType

public ResourceIdentity withType(IdentityType type)

ID の種類を設定します。 リソースの Azure Active Directory プリンシパルを自動的に作成して割り当てるには、これを "SystemAssigned" に設定します。 使用可能な値は、'SystemAssigned' です。

Parameters:

type - 設定する型の値

Returns:

ResourceIdentity オブジェクト自体。

適用対象