KeyBundle クラス

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

public class KeyBundle

WebKey とその属性で構成される KeyBundle。

メソッドの概要

修飾子と型 メソッドと説明
KeyAttributes attributes()

属性の値を取得します。

JsonWebKey key()

キー値を取得します。

KeyIdentifier keyIdentifier()

キー識別子。

Boolean managed()

マネージド値を取得します。

Map<String, String> tags()

タグの値を取得します。

String toString()
KeyBundle withAttributes(KeyAttributes attributes)

属性の値を設定します。

KeyBundle withKey(JsonWebKey key)

キー値を設定します。

KeyBundle withTags(Map<String, String> tags)

タグの値を設定します。

メソッドの詳細

attributes

public KeyAttributes attributes()

属性の値を取得します。

Returns:

属性値

key

public JsonWebKey key()

キー値を取得します。

Returns:

キー値

keyIdentifier

public KeyIdentifier keyIdentifier()

キー識別子。

Returns:

キーの識別子

managed

public Boolean managed()

マネージド値を取得します。

Returns:

マネージド値

tags

public Map tags()

タグの値を取得します。

Returns:

タグの値

toString

public String toString()

withAttributes

public KeyBundle withAttributes(KeyAttributes attributes)

属性の値を設定します。

Parameters:

attributes - 設定する属性値

Returns:

KeyBundle オブジェクト自体。

withKey

public KeyBundle withKey(JsonWebKey key)

キー値を設定します。

Parameters:

key - 設定するキー値

Returns:

KeyBundle オブジェクト自体。

withTags

public KeyBundle withTags(Map tags)

タグの値を設定します。

Parameters:

tags - 設定するタグ値

Returns:

KeyBundle オブジェクト自体。

適用対象