次の方法で共有


Attributes クラス

  • java.lang.Object
    • com.microsoft.azure.keyvault.models.Attributes

public class Attributes

KeyVault サービスによって管理されるオブジェクト属性。

メソッドの概要

修飾子と型 メソッドと説明
DateTime created()

作成された値を取得します。

Boolean enabled()

有効な値を取得します。

DateTime expires()

有効期限の値を取得します。

DateTime notBefore()

notBefore 値を取得します。

DateTime updated()

更新された値を取得します。

Attributes withEnabled(Boolean enabled)

有効な値を設定します。

Attributes withExpires(DateTime expires)

expires 値を設定します。

Attributes withNotBefore(DateTime notBefore)

notBefore 値を設定します。

メソッドの詳細

created

public DateTime created()

作成された値を取得します。

Returns:

作成された値

enabled

public Boolean enabled()

有効な値を取得します。

Returns:

有効な値

expires

public DateTime expires()

有効期限の値を取得します。

Returns:

expires 値

notBefore

public DateTime notBefore()

notBefore 値を取得します。

Returns:

notBefore 値

updated

public DateTime updated()

更新された値を取得します。

Returns:

更新された値

withEnabled

public Attributes withEnabled(Boolean enabled)

有効な値を設定します。

Parameters:

enabled - 設定する有効な値

Returns:

Attributes オブジェクト自体。

withExpires

public Attributes withExpires(DateTime expires)

expires 値を設定します。

Parameters:

expires - 設定する有効期限の値

Returns:

Attributes オブジェクト自体。

withNotBefore

public Attributes withNotBefore(DateTime notBefore)

notBefore 値を設定します。

Parameters:

notBefore - 設定する notBefore 値

Returns:

Attributes オブジェクト自体。

適用対象