Interface Key.DefinitionStages.WithKeyOperations
-
- All Known Subinterfaces:
Key.Definition,Key.DefinitionStages.WithCreate
- Enclosing interface:
- Key.DefinitionStages
public static interface Key.DefinitionStages.WithKeyOperationsThe stage of a key definition allowing to specify the allowed operations for the key.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Key.DefinitionStages.WithCreatewithKeyOperations(com.azure.security.keyvault.keys.models.KeyOperation... keyOperations)Specifies the list of allowed key operations.Key.DefinitionStages.WithCreatewithKeyOperations(List<com.azure.security.keyvault.keys.models.KeyOperation> keyOperations)Specifies the list of allowed key operations.
-
-
-
Method Detail
-
withKeyOperations
Key.DefinitionStages.WithCreate withKeyOperations(List<com.azure.security.keyvault.keys.models.KeyOperation> keyOperations)
Specifies the list of allowed key operations. By default all operations are allowed.- Parameters:
keyOperations- the list of JWK operations- Returns:
- the next stage of the definition
-
withKeyOperations
Key.DefinitionStages.WithCreate withKeyOperations(com.azure.security.keyvault.keys.models.KeyOperation... keyOperations)
Specifies the list of allowed key operations. By default all operations are allowed.- Parameters:
keyOperations- the list of JWK operations- Returns:
- the next stage of the definition
-
-