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 Boolean
hsm()
Get the hsm value.JsonWebKey
key()
Get the key value.KeyAttributes
keyAttributes()
Get the keyAttributes value.Map<String,String>
tags()
Get the tags value.KeyImportParameters
withHsm(Boolean hsm)
Set the hsm value.KeyImportParameters
withKey(JsonWebKey key)
Set the key value.KeyImportParameters
withKeyAttributes(KeyAttributes keyAttributes)
Set the keyAttributes value.KeyImportParameters
withTags(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.
-
-