Interface Key.UpdateStages.WithKeyOperations
-
- All Known Subinterfaces:
Key.Update,Key.UpdateWithCreate,Key.UpdateWithImport
- Enclosing interface:
- Key.UpdateStages
public static interface Key.UpdateStages.WithKeyOperationsThe stage of a key update allowing to specify the allowed operations for the key.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Key.UpdatewithKeyOperations(com.azure.security.keyvault.keys.models.KeyOperation... keyOperations)Specifies the list of allowed key operations.Key.UpdatewithKeyOperations(List<com.azure.security.keyvault.keys.models.KeyOperation> keyOperations)Specifies the list of allowed key operations.
-
-
-
Method Detail
-
withKeyOperations
Key.Update 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 update
-
withKeyOperations
Key.Update 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 update
-
-