Class KeyImportParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.KeyImportParameters
-
public class KeyImportParameters extends Object
The key import parameters.
-
-
Constructor Summary
Constructors Constructor Description KeyImportParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Booleanhsm()Get the hsm value.JsonWebKeykey()Get the key value.KeyAttributeskeyAttributes()Get the keyAttributes value.Map<String,String>tags()Get the tags value.KeyImportParameterswithHsm(Boolean hsm)Set the hsm value.KeyImportParameterswithKey(JsonWebKey key)Set the key value.KeyImportParameterswithKeyAttributes(KeyAttributes keyAttributes)Set the keyAttributes value.KeyImportParameterswithTags(Map<String,String> tags)Set the tags value.
-
-
-
Method Detail
-
hsm
public Boolean hsm()
Get the hsm value.- Returns:
- the hsm value
-
withHsm
public KeyImportParameters withHsm(Boolean hsm)
Set the hsm value.- Parameters:
hsm- the hsm value to set- Returns:
- the KeyImportParameters object itself.
-
key
public JsonWebKey key()
Get the key value.- Returns:
- the key value
-
withKey
public KeyImportParameters withKey(JsonWebKey key)
Set the key value.- Parameters:
key- the key value to set- Returns:
- the KeyImportParameters object itself.
-
keyAttributes
public KeyAttributes keyAttributes()
Get the keyAttributes value.- Returns:
- the keyAttributes value
-
withKeyAttributes
public KeyImportParameters withKeyAttributes(KeyAttributes keyAttributes)
Set the keyAttributes value.- Parameters:
keyAttributes- the keyAttributes value to set- Returns:
- the KeyImportParameters object itself.
-
withTags
public KeyImportParameters withTags(Map<String,String> tags)
Set the tags value.- Parameters:
tags- the tags value to set- Returns:
- the KeyImportParameters object itself.
-
-