Class CreateKeyRequest
- java.lang.Object
-
- com.microsoft.azure.keyvault.requests.CreateKeyRequest
-
public final class CreateKeyRequest extends Object
The create key request class.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CreateKeyRequest.Builder
TheCreateKeyRequest
builder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonWebKeyCurveName
curve()
KeyAttributes
keyAttributes()
String
keyName()
List<JsonWebKeyOperation>
keyOperations()
Integer
keySize()
JsonWebKeyType
keyType()
Map<String,String>
tags()
String
vaultBaseUrl()
-
-
-
Method Detail
-
vaultBaseUrl
public String vaultBaseUrl()
- Returns:
- the vault base url
-
keyName
public String keyName()
- Returns:
- the key name
-
keyType
public JsonWebKeyType keyType()
- Returns:
- the key type
-
keySize
public Integer keySize()
- Returns:
- the key size
-
keyOperations
public List<JsonWebKeyOperation> keyOperations()
- Returns:
- the key operations
-
keyAttributes
public KeyAttributes keyAttributes()
- Returns:
- the key attributes
-
curve
public JsonWebKeyCurveName curve()
- Returns:
- the curve
-
-