Interface Key.DefinitionStages.WithKeySize
-
- All Known Subinterfaces:
Key.Definition,Key.DefinitionStages.WithCreate
- Enclosing interface:
- Key.DefinitionStages
public static interface Key.DefinitionStages.WithKeySizeThe stage of a key definition allowing to specify the key size.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Key.DefinitionStages.WithCreatewithKeyCurveName(com.azure.security.keyvault.keys.models.KeyCurveName keyCurveName)Specifies the name of the key curve for elliptic-curve key to create.Key.DefinitionStages.WithCreatewithKeySize(int size)Specifies the size of the RSA key to create.
-
-
-
Method Detail
-
withKeySize
Key.DefinitionStages.WithCreate withKeySize(int size)
Specifies the size of the RSA key to create.- Parameters:
size- the size of the key in integer- Returns:
- the next stage of the definition
-
withKeyCurveName
Key.DefinitionStages.WithCreate withKeyCurveName(com.azure.security.keyvault.keys.models.KeyCurveName keyCurveName)
Specifies the name of the key curve for elliptic-curve key to create.- Parameters:
keyCurveName- name of the key curve- Returns:
- the next stage of the definition
-
-