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 classCreateKeyRequest.BuilderTheCreateKeyRequestbuilder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonWebKeyCurveNamecurve()KeyAttributeskeyAttributes()StringkeyName()List<JsonWebKeyOperation>keyOperations()IntegerkeySize()JsonWebKeyTypekeyType()Map<String,String>tags()StringvaultBaseUrl()
-
-
-
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
-
-