SecretProperties クラス
- java.
lang. Object - com.
azure. security. keyvault. secrets. models. SecretProperties
- com.
実装
public class SecretProperties
implements JsonSerializable<SecretProperties>
SecretProperties は、シークレットの値を除くシークレットのすべてのプロパティを含むリソースです。 シークレット サービスによって管理されます。
コンストラクターの概要
コンストラクター | 説明 |
---|---|
SecretProperties() |
シークレット |
メソッドの概要
メソッドの継承元: java.lang.Object
コンストラクターの詳細
SecretProperties
public SecretProperties()
SecretProperties の空のインスタンスを作成します。
メソッドの詳細
fromJson
public static SecretProperties fromJson(JsonReader jsonReader)
JSON ストリームを に読み取 SecretPropertiesります。
パラメーター:
戻り値:
スロー:
getContentType
public String getContentType()
コンテンツ タイプを取得します。
戻り値:
getCreatedOn
public OffsetDateTime getCreatedOn()
シークレットが作成された UTC 時刻を取得します。
戻り値:
getExpiresOn
public OffsetDateTime getExpiresOn()
シークレットの有効期限を UTC で取得します。
戻り値:
getId
public String getId()
シークレット識別子を取得します。
戻り値:
getKeyId
public String getKeyId()
keyId 識別子を取得します。
戻り値:
getName
public String getName()
シークレット名を取得します。
戻り値:
getNotBefore
public OffsetDateTime getNotBefore()
notBefore UTC 時刻を取得します。
戻り値:
getRecoverableDays
public Integer getRecoverableDays()
論理的な削除が有効なKey Vaultに対して削除されるまでのシークレットの保持日数を取得します。
戻り値:
getRecoveryLevel
public String getRecoveryLevel()
シークレットの回復レベルを取得します。
戻り値:
getTags
public Map
シークレットに関連付けられているタグを取得します。
戻り値:
getUpdatedOn
public OffsetDateTime getUpdatedOn()
シークレットが最後に更新された UTC 時刻を取得します。
戻り値:
getVersion
public String getVersion()
シークレットのバージョンを取得します。
戻り値:
isEnabled
public Boolean isEnabled()
有効な値を取得します。
戻り値:
isManaged
public Boolean isManaged()
マネージド値を取得します。
戻り値:
setContentType
public SecretProperties setContentType(String contentType)
contentType を設定します。
パラメーター:
戻り値:
setEnabled
public SecretProperties setEnabled(Boolean enabled)
有効な値を設定します。
パラメーター:
戻り値:
setExpiresOn
public SecretProperties setExpiresOn(OffsetDateTime expiresOn)
UTC 時刻を設定します expires 。
パラメーター:
戻り値:
setNotBefore
public SecretProperties setNotBefore(OffsetDateTime notBefore)
UTC 時刻を設定します notBefore 。
パラメーター:
戻り値:
setTags
public SecretProperties setTags(Map
シークレットに関連付けるタグを設定します。
パラメーター:
戻り値:
toJson
適用対象
Azure SDK for Java